update 6-7
This commit is contained in:
parent
50ea136fdb
commit
013a2c3d0e
|
@ -1,2 +1,3 @@
|
||||||
*/tempCodeRunnerFile.*
|
*/tempCodeRunnerFile.*
|
||||||
*/*.exe
|
*/*.exe
|
||||||
|
t.py
|
|
@ -0,0 +1,11 @@
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int ans;
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
for (int i = 1; i < 10; i++) {
|
||||||
|
ans += i;
|
||||||
|
}
|
||||||
|
printf("%d", ans);
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue