题解 2998: 电影票

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

2998: 电影票

摘要:##2998: 电影票 ```c #include int main() { int n; scanf("%d",&n); printf("%d %d",n,10*n); re……

编写题解 2998: 电影票

摘要:解题思路:注意事项:参考代码:    int a;     scanf("%d",&a);     printf("%d %d",a,a*10);……

电影票(小白版)

摘要:解题思路:注意事项:写的那么好,不来个五星?参考代码:#include<stdio.h>int main(){    int a,b;    scanf("%d",&a);    b=a*10;   ……