mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
14 lines
139 B
C++
14 lines
139 B
C++
|
#include<iostream>
|
||
|
using namespace std;
|
||
|
|
||
|
struct Item
|
||
|
{
|
||
|
int weight;
|
||
|
int profit;
|
||
|
};
|
||
|
|
||
|
|
||
|
int main(int argc, char const *argv[])
|
||
|
{
|
||
|
return 0;
|
||
|
}
|