编写题解 2998: 电影票
摘要:解题思路:注意事项:参考代码: int a;
scanf("%d",&a);
printf("%d %d",a,a*10);……
2998: 电影票(极为简单)
摘要:解题思路:注意事项:参考代码:#include<iostream>
using namespace std;
int main()
{
int a;
cin>>a;
……
比较简单,写个题解记录一下吧
摘要:解题思路:比较简单,字数不够。。。。。。。。。。。。。。。。。。。。注意事项:参考代码:x = int(input())print(x,x*10)……
编写题解 2998: 电影票
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(~scanf("%d%d", &a, &b))printf("%d\n……
萌新出品 2998: 电影票
摘要:参考代码:#include<iostream>using namespace std;int main(){ int x; cin >> x; cout << x <<" "<< 10 ……