mirror of
https://github.com/m1ngsama/code4sk.git
synced 2025-12-24 10:51:22 +00:00
refreash
This commit is contained in:
parent
f6cc2fe4e1
commit
f66dfc70b0
18 changed files with 28 additions and 8 deletions
Binary file not shown.
Binary file not shown.
|
|
@ -1,8 +0,0 @@
|
||||||
|
|
||||||
#include<stdio.h>
|
|
||||||
int main(){
|
|
||||||
int i=10, j=0;
|
|
||||||
if (j=0)i++; else i--;
|
|
||||||
printf("%d",i);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,28 @@
|
||||||
|
/*
|
||||||
|
7-3 Programming in C is fun!
|
||||||
|
分数 20
|
||||||
|
作者 C课程组
|
||||||
|
单位 浙江大学
|
||||||
|
本题要求编写程序,输出一个短句“Programming in C is fun!”。
|
||||||
|
|
||||||
|
输入格式:
|
||||||
|
本题目没有输入。
|
||||||
|
|
||||||
|
输出格式:
|
||||||
|
在一行中输出短句“Programming in C is fun!”。
|
||||||
|
|
||||||
|
代码长度限制
|
||||||
|
16 KB
|
||||||
|
时间限制
|
||||||
|
400 ms
|
||||||
|
内存限制
|
||||||
|
64 MB
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
int main(void)
|
||||||
|
{
|
||||||
|
printf("Programming in C is fun!");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue