BC29. 开学?
描述
输入描述
输入包含两个数字X,N(1≤X≤7, 1≤N≤1000)。输出描述
输出一个数字,表示开学日期是星期几。示例1
输入:
1 2
输出:
3
示例2
输入:
5 9
输出:
7
C 解法, 执行用时: 2ms, 内存消耗: 288KB, 提交时间: 2022-04-23
#include <stdio.h> #include <stdlib.h> int main() { int x,y; scanf("%d %d",&x,&y); printf("%d\n",(x+y)%7==0?7:(x+y)%7); }
C 解法, 执行用时: 2ms, 内存消耗: 288KB, 提交时间: 2022-04-18
#include <stdio.h> int main(void) { int X = 0; int N = 0; scanf("%d %d", &X, &N); printf("%d\n", (X + N) % 7 ? (X + N) % 7 : 7); return 0; }
C 解法, 执行用时: 2ms, 内存消耗: 292KB, 提交时间: 2022-08-02
#include <stdio.h> int main() { int a,b; scanf("%d%d",&a,&b); int c; c=(a+b)%7; if(c==0) c=7; printf("%d",c); }
C 解法, 执行用时: 2ms, 内存消耗: 292KB, 提交时间: 2022-08-02
#include<stdio.h> int main() { int X,N; scanf("%d%d",&X,&N); int c = (X+N)%7; if(0 == c) { c = 7; } printf("%d",c); return 0; }
C 解法, 执行用时: 2ms, 内存消耗: 292KB, 提交时间: 2022-07-21
#include <stdio.h> int main(){ int a,b; scanf("%d %d",&a,&b); if((a+b)%7==0){ printf("%d",7); }else{ printf("%d",(a+b)%7); } return 0; }